home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1997 August / Walnut Creek CDROM.7z / VOL_400 / 460_01 / YACL0160.ZIP / uidemo / scroll / main.cxx < prev    next >
Encoding:
C/C++ Source or Header  |  1996-02-29  |  288 b   |  19 lines

  1.  
  2.  
  3. #include "ui/applic.h"
  4.  
  5.  
  6. #include "appwin.h"
  7.  
  8. // ======================== Main program ===========================
  9.  
  10.  
  11. int UI_Application::Main (int /* argc */, char* []) 
  12. {
  13.     MakeTopWindow (new AppWindow);
  14.     MainWindow()->Title() = "YACL ScrollBar Demo";
  15.     Run();
  16.     return 0;
  17. }
  18.  
  19.